home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / comms / other / ambos-cgi / aws / doc / configfile < prev    next >
Text File  |  1999-06-14  |  2KB  |  68 lines

  1. # Lines starting with a '#' are comments
  2.  
  3. # IP port to listen to, default is 80
  4. port 80
  5.  
  6. # Name to use in redirects and error reports; default is hostname
  7. servername www.yourdomain.org
  8.  
  9. # Email address to put in error reports, default is webmaster @ whatever
  10. # servername is set to
  11. maintainer webmaster@www.yourdomain.org
  12.  
  13. # File to look for when asked to fetch a directory, default is index.html
  14. indexfile index.html
  15.  
  16. # # of hours to add to system clock to get GMT. Default is 0
  17. hoursoff 0
  18.  
  19. # File to log accesses - whether successfull or not.
  20. accesslog spool:logs/http_access
  21.  
  22. # File to log errors to, both server and reference. Some things will be logged
  23. # twice (i.e. "File not found" errors).
  24. messagelog spool:logs/http_error
  25.  
  26. # The file type to use for file we can't identify. Default is text/plain
  27. deftype text/plain
  28.  
  29. # List of file types we want to report, by extension
  30.  
  31. # Of course, .html files are html
  32. type text/html html
  33.  
  34. # .ps files containt postscript
  35. type application/postscript ps
  36.  
  37. # .lha files should be saved to disk
  38. type application/octect-stream lha
  39.  
  40. # .hgif, .jpg, .jpeg & .xbm files are all various kinds of bitmap.
  41. type image/gif gif
  42. type image/jpeg jpg jpeg
  43. type image/x-xbitmap xbm
  44.  
  45. # Sample mappings: map URL-to-map module-type argument
  46.  
  47. # Redirect requests for the old plan.html file to index.
  48. # Note that this should be listed before the "map /~mwm/" line;
  49. # otherwise if there is a plan.html in that directory, it will
  50. # be served instead of the redirect.
  51. map /~mwm/plan.html redirect /~mwm/
  52.  
  53. # /~mwm/ is in directory data:html/
  54. map /~mwm/ directory data:html/
  55.  
  56. # Anyone trying to get /~admin/ will get sent to /
  57. map /~admin/ redirect /
  58.  
  59. # Set up the CGI bin directory
  60. map /cgi-bin/ cgi aws:cgi-bin/
  61.  
  62. # A "null" entry, so we can redirect people to links that don't change
  63. # the page
  64. map /null null -
  65.  
  66. # Finally, where to look for everything else.
  67. map / directory cust:admin/html/
  68.